home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 3: Dr. Sid.iso / pc / assets / sid-photogallery.dcr / 00034_down-arrow.ls < prev    next >
Encoding:
Text File  |  2001-07-22  |  632 b   |  32 lines

  1. global selectionChecker
  2.  
  3. on mouseDown
  4.   sprite(2).visible = 0
  5.   repeat while the stillDown
  6.     puppetSound(1, "Clicker")
  7.     i = 6
  8.     repeat while i <= 14
  9.       if the locV of sprite i > 94 then
  10.         set the locV of sprite i to the locV of sprite i - 1
  11.       else
  12.         if the locV of sprite i <= 94 then
  13.           set the locV of sprite i to 462
  14.         end if
  15.       end if
  16.       if selectionChecker <> 0 then
  17.         set the loc of sprite 17 to the loc of sprite selectionChecker
  18.       end if
  19.       i = 1 + i
  20.     end repeat
  21.     updateStage()
  22.   end repeat
  23. end
  24.  
  25. on mouseEnter
  26.   cursor(280)
  27. end
  28.  
  29. on mouseLeave
  30.   cursor(-1)
  31. end
  32.